const time.hasMonotonic

18 uses

	time (current package)
		format.go#L550: 	if t.wall&hasMonotonic != 0 {
		time.go#L164: 	hasMonotonic = 1 << 63
		time.go#L182: 	if t.wall&hasMonotonic != 0 {
		time.go#L193: 	if t.wall&hasMonotonic != 0 {
		time.go#L197: 			t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
		time.go#L227: 	if t.wall&hasMonotonic != 0 {
		time.go#L238: 	if t.wall&hasMonotonic == 0 {
		time.go#L243: 		t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
		time.go#L254: 	if t.wall&hasMonotonic == 0 {
		time.go#L272: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L282: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L294: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L317: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L1182: 	if t.wall&hasMonotonic != 0 {
		time.go#L1199: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L1228: 	if t.wall&hasMonotonic != 0 && !runtimeIsBubbled() {
		time.go#L1238: 	if t.wall&hasMonotonic != 0 && !runtimeIsBubbled() {
		time.go#L1360: 	return Time{hasMonotonic | uint64(sec)<<nsecShift | uint64(nsec), mono, Local}